home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 2 / Atari Mega Archive CD - Volume 2.iso / minix / up1510b.tgz / up1510b / src / lib / posix / creat.c < prev    next >
C/C++ Source or Header  |  1990-07-19  |  124b  |  9 lines

  1. #include <lib.h>
  2.  
  3. PUBLIC int creat(name, mode)
  4. _CONST char *name;
  5. mode_t mode;
  6. {
  7.   return(callm3(FS, CREAT, mode, name));
  8. }
  9.